mirror of
				https://github.com/cinnyapp/cinny.git
				synced 2025-11-04 06:20:28 +03:00 
			
		
		
		
	String update and file extension name consistency (#436)
* Fixes #434 * Fixes #433 * Prtially fixes #432 * Disable auto labelling of issues * Use yaml instead of yml as recommended by yaml.org * shortened the strings * simplified option description
This commit is contained in:
		
							parent
							
								
									7d508e5a7d
								
							
						
					
					
						commit
						1a6e3e73c5
					
				
					 12 changed files with 14 additions and 16 deletions
				
			
		
							
								
								
									
										0
									
								
								.github/FUNDING.yml → .github/FUNDING.yaml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										0
									
								
								.github/FUNDING.yml → .github/FUNDING.yaml
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -1,6 +1,5 @@
 | 
			
		|||
name: 🐞 Bug Report
 | 
			
		||||
description: Report a bug
 | 
			
		||||
labels: 'type: bug'
 | 
			
		||||
 | 
			
		||||
body:
 | 
			
		||||
  - type: markdown
 | 
			
		||||
| 
						 | 
				
			
			@ -50,7 +49,7 @@ body:
 | 
			
		|||
      render: shell
 | 
			
		||||
    validations:
 | 
			
		||||
      required: true
 | 
			
		||||
  
 | 
			
		||||
 | 
			
		||||
  - type: textarea
 | 
			
		||||
    id: context
 | 
			
		||||
    attributes:
 | 
			
		||||
| 
						 | 
				
			
			@ -1,6 +1,5 @@
 | 
			
		|||
name: 💡 Feature Request
 | 
			
		||||
description: Suggest an idea
 | 
			
		||||
labels: 'type: feature'
 | 
			
		||||
 | 
			
		||||
body:
 | 
			
		||||
  - type: textarea
 | 
			
		||||
| 
						 | 
				
			
			@ -26,7 +25,7 @@ body:
 | 
			
		|||
    attributes:
 | 
			
		||||
      label: Alternatives considered
 | 
			
		||||
      description: "Any alternative solutions you've considered"
 | 
			
		||||
  
 | 
			
		||||
 | 
			
		||||
  - type: textarea
 | 
			
		||||
    id: context
 | 
			
		||||
    attributes:
 | 
			
		||||
| 
						 | 
				
			
			@ -5,7 +5,7 @@ version: 2
 | 
			
		|||
updates:
 | 
			
		||||
  - package-ecosystem: github-actions
 | 
			
		||||
    directory: /
 | 
			
		||||
    schedule: 
 | 
			
		||||
    schedule:
 | 
			
		||||
      interval: weekly
 | 
			
		||||
      day: "tuesday"
 | 
			
		||||
      time: "01:00"
 | 
			
		||||
| 
						 | 
				
			
			@ -13,7 +13,7 @@ updates:
 | 
			
		|||
 | 
			
		||||
  - package-ecosystem: docker
 | 
			
		||||
    directory: /
 | 
			
		||||
    schedule: 
 | 
			
		||||
    schedule:
 | 
			
		||||
      interval: weekly
 | 
			
		||||
      day: "tuesday"
 | 
			
		||||
      time: "01:00"
 | 
			
		||||
| 
						 | 
				
			
			@ -21,7 +21,7 @@ updates:
 | 
			
		|||
 | 
			
		||||
  - package-ecosystem: npm
 | 
			
		||||
    directory: /
 | 
			
		||||
    schedule: 
 | 
			
		||||
    schedule:
 | 
			
		||||
      interval: weekly
 | 
			
		||||
      day: "tuesday"
 | 
			
		||||
      time: "01:00"
 | 
			
		||||
							
								
								
									
										2
									
								
								.github/workflows/netlify-dev.yaml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/netlify-dev.yaml
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -10,7 +10,7 @@ jobs:
 | 
			
		|||
    name: 'Deploy'
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
 | 
			
		||||
    steps:      
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout repository
 | 
			
		||||
        uses: actions/checkout@v3.0.0
 | 
			
		||||
      - name: Build and deploy to Netlify
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -17,19 +17,19 @@ const visibility = {
 | 
			
		|||
 | 
			
		||||
const items = [{
 | 
			
		||||
  iconSrc: null,
 | 
			
		||||
  text: 'World readable (anyone can read)',
 | 
			
		||||
  text: 'Anyone (including guests)',
 | 
			
		||||
  type: visibility.WORLD_READABLE,
 | 
			
		||||
}, {
 | 
			
		||||
  iconSrc: null,
 | 
			
		||||
  text: 'Member shared (since the point in time of selecting this option)',
 | 
			
		||||
  text: 'Members (all messages)',
 | 
			
		||||
  type: visibility.SHARED,
 | 
			
		||||
}, {
 | 
			
		||||
  iconSrc: null,
 | 
			
		||||
  text: 'Member invited (since they were invited)',
 | 
			
		||||
  text: 'Members (messages after invite)',
 | 
			
		||||
  type: visibility.INVITED,
 | 
			
		||||
}, {
 | 
			
		||||
  iconSrc: null,
 | 
			
		||||
  text: 'Member joined (since they joined)',
 | 
			
		||||
  text: 'Members (messages after join)',
 | 
			
		||||
  type: visibility.JOINED,
 | 
			
		||||
}];
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -87,7 +87,7 @@ function RoomHistoryVisibility({ roomId }) {
 | 
			
		|||
          </MenuItem>
 | 
			
		||||
        ))
 | 
			
		||||
      }
 | 
			
		||||
      <Text variant="b3">Changes to who can read history will only apply to future messages in this room. The visibility of existing history will be unchanged.</Text>
 | 
			
		||||
      <Text variant="b3">Changes to history visibility will only apply to future messages. The visibility of existing history will have no effect.</Text>
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -210,7 +210,7 @@ function CreateRoomContent({ isSpace, parentId, onRequestClose }) {
 | 
			
		|||
            />
 | 
			
		||||
          )}
 | 
			
		||||
          content={(
 | 
			
		||||
            <Text variant="b3">Founder (101) override the default Admin (100) power level.</Text>
 | 
			
		||||
            <Text variant="b3">Selecting Admin sets 100 power level whereas Founder sets 101.</Text>
 | 
			
		||||
          )}
 | 
			
		||||
        />
 | 
			
		||||
        <Input name="topic" minHeight={174} resizable label="Topic (optional)" />
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -123,7 +123,7 @@ function SecuritySettings({ roomId }) {
 | 
			
		|||
        <RoomEncryption roomId={roomId} />
 | 
			
		||||
      </div>
 | 
			
		||||
      <div className="room-settings__card">
 | 
			
		||||
        <MenuHeader>Message history visibility (Who can read history)</MenuHeader>
 | 
			
		||||
        <MenuHeader>Message history visibility</MenuHeader>
 | 
			
		||||
        <RoomHistoryVisibility roomId={roomId} />
 | 
			
		||||
      </div>
 | 
			
		||||
    </>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -63,7 +63,7 @@ function genRoomIntro(mEvent, roomTimeline) {
 | 
			
		|||
      avatarSrc={avatarSrc}
 | 
			
		||||
      name={roomTimeline.room.name}
 | 
			
		||||
      heading={`Welcome to ${roomTimeline.room.name}`}
 | 
			
		||||
      desc={`This is the beginning of ${roomTimeline.room.name} room.${typeof roomTopic !== 'undefined' ? (` Topic: ${roomTopic}`) : ''}`}
 | 
			
		||||
      desc={`This is the beginning of the ${roomTimeline.room.name} room.${typeof roomTopic !== 'undefined' ? (` Topic: ${roomTopic}`) : ''}`}
 | 
			
		||||
      time={mEvent ? `Created at ${dateFormat(mEvent.getDate(), 'dd mmmm yyyy, hh:MM TT')}` : null}
 | 
			
		||||
    />
 | 
			
		||||
  );
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue